projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4fb83f3
)
(bcopy) Use memmove instead of memcpy.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 26 Dec 1993 06:04:51 +0000
(06:04 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 26 Dec 1993 06:04:51 +0000
(06:04 +0000)
src/s/usg5-4.h
patch
|
blob
|
history
diff --git
a/src/s/usg5-4.h
b/src/s/usg5-4.h
index f319ecd2d222b3b4e595d54ade9a17c21a683706..34a19bd37b0e7446afd36f1314b8b55fcc7ab4ea 100644
(file)
--- a/
src/s/usg5-4.h
+++ b/
src/s/usg5-4.h
@@
-196,6
+196,6
@@
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
So give it a try. */
#define HAVE_SOCKETS
-#define bcopy(src,dst,n) mem
cpy
(dst,src,n)
+#define bcopy(src,dst,n) mem
move
(dst,src,n)
#define bcmp(src,dst,n) memcmp(src,dst,n)
#define bzero(s,n) memset(s,0,n)